home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #14 / Monster Media No. 14 (April 1996) (Monster Media, Inc.).ISO / bbs_door / olsq_11.zip / PCSTOK.BAT < prev    next >
DOS Batch File  |  1996-01-31  |  819b  |  31 lines

  1. rem=======================================================================
  2. rem   You must edit this file to work with your particular BBS
  3. rem situation.  It works just fine for me but, that's no guarantee that it
  4. rem will work for you.   This is just a sample of one way to accomplish the
  5. rem compilation of the QUOTES.ASC  file.  This file also assumes that
  6. rem you are using 4DOS.  If you aren't, you should. <grin>
  7. rem=======================================================================
  8.  
  9. @echo off
  10. cls
  11.  
  12. cdd g:\quotes
  13. if exist PCSTOK*.* gosub Unzip
  14. if exist QUOTES.ASC gosub Compile
  15. goto end
  16.  
  17. :Unzip
  18.      pkunzip -o pcstok*.*
  19.      move pcstok*.* g:\temp
  20.      Return
  21.  
  22. :Compile
  23.      cdd d:\door\stock
  24.      Readstk g:\quotes
  25.      del g:\quotes\quotes.asc
  26.      Favcomp
  27.      Return
  28.  
  29. end:
  30.  
  31.